-- Declare variables local patio = script.Parent print("Start creating patio!") -- start with the patio invisible patio.Transparency = 1 wait(6) patio.Transparency = 0 wait(1) -- change the size of the patio patio.Size = Vector3.new(15, .2, 15) wait(1) -- change the position of the patio patio.Position = Vector3.new(15, 10.5, 0) wait(1) -- change the material to cobblestone patio.Material = Enum.Material.Cobblestone wait(1) -- change the color of the patio patio.BrickColor = BrickColor.new("Beige") print("Stop creating patio")